b4cfa41a7e673827812d7717b4bf45a1e1a9cadc,src/com/jsql/view/manager/WebshellManager.java,WebshellManager,WebshellManager,#,52
Before Change
JLabel label = new JLabel("[Optional] URL to the web shell directory:");
label.setHorizontalAlignment(SwingConstants.CENTER);
urlLine.setBorder(BorderFactory.createCompoundBorder(
BorderFactory.createMatteBorder(0, 1, 0, 0, GUITools.COMPONENT_BORDER),
BorderFactory.createEmptyBorder(1, 1, 1, 1)));
final JTextField shellURL = new JPopupTextField().getProxy();
String tooltip = "<html><b>How to use</b><br>" +
After Change
"is http://site.com/another/path/ (because of alias or url rewriting for example).</i></html>";
shellURL.setToolTipText(tooltip);
shellURL.setBorder(BorderFactory.createCompoundBorder(
BorderFactory.createCompoundBorder(
BorderFactory.createMatteBorder(0, 1, 0, 0, GUITools.COMPONENT_BORDER),
BorderFactory.createMatteBorder(1, 1, 0, 1, GUITools.DEFAULT_BACKGROUND)),
GUITools.BLU_ROUND_BORDER));
// urlLine.add(shellURL);
// urlLine.add(label, BorderLayout.NORTH);